You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > Matrix Structure > Matrix Methods > Kron Method > Matrix.Kron Method ([In] TVec, [In] TVec)
Dew Math for .NET
ContentsIndexHome
Example
var A: Matrix; V1,V2: Vector; begin V1.SetIt(False,[1,2,3]); V2.SetIt(False,[4,5,6]); A.Kron(V1,V2); // A becomes: // [4 5 6] // [8 10 12] // [12 15 18] end;
Copyright (c) 1999-2024 by Dew Research. All rights reserved.